home *** CD-ROM | disk | FTP | other *** search
/ Interactive Web Graphics with Shout 3D / Interactive Web Graphics With Shout 3D.iso / mac / Shout3Ddemo / Shout3d_runtime / codebase / applets / LightTestApplet.java < prev    next >
Text File  |  2000-09-01  |  563b  |  29 lines

  1. /**    
  2.     Company:        Eyematic Interfaces
  3.     Project:        Shout3D 2.0 Sample Code
  4.     Class:            LightTestApplet
  5.     Date:            April 26, 1999
  6.     Description:    Class for applet that tests scoping of lights
  7.     (C) Copyright Eyematic Interfaces, Inc. - 1997-2000 - All rights reserved
  8.  */
  9.  
  10. package applets;
  11.  
  12. import  shout3d.*;
  13.  
  14. /**
  15.  * LightTestApplet
  16.  * 
  17.  * @author Dave Westwood
  18.  * @author Jim Stewartson
  19.  * @author Paul Isaacs
  20.  */
  21.  
  22. public class LightTestApplet extends Shout3DApplet {
  23.  
  24.     public void initShout3DPanel(){
  25.         panel = new LightTestPanel(this);
  26.     }
  27.     
  28. }
  29.